/* ===== VARIÁVEIS GLOBAIS ===== */
:root {
    --bg-dark: #06021a;          /* Cor de fundo escura */
    --topstrip-height: 44px;     /* altura da faixa superior */
    --header-height: 80px;       /* altura padrão do header */
    --container-max: 1200px;
    --blue-900: #010033;         /* Azul escuro */
    --blue-700: #0b2bff;         /* Azul principal */
    --accent: #070a3f;           /* Cor de destaque */
    --white: #ffffff;            /* Branco */
    --gray-100: #f8f9fa;         /* Cinza claro */
    --gray-200: #e9ecef;         /* Cinza médio claro */
    --gray-600: #6c757d;         /* Cinza médio */
    --gray-800: #343a40;         /* Cinza escuro */
    --gray-900: #000000;         /* Preto */
    --card-bg: #ffffff;          /* Cor de fundo dos cards */
    --shadow: 0 8px 30px rgba(0, 0, 0, 0.12); /* Sombra padrão */
    --dropdown-bg: #ffffff;      /* Cor de fundo dos dropdowns */
    --space-xs: 8px;             /* Espaçamento extra pequeno */
    --space-sm: 16px;            /* Espaçamento pequeno */
    --space-md: 24px;            /* Espaçamento médio */
    --space-lg: 48px;            /* Espaçamento grande */
    --space-xl: 80px;            /* Espaçamento extra grande */
    --ff: 'Poppins', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial; /* Fonte padrão */
    --h1: 48px;                  /* Tamanho do H1 */
    --h2: 36px;                  /* Tamanho do H2 */
    --h3: 20px;                  /* Tamanho do H3 */
    --regular: 16px;             /* Tamanho de texto regular */
}

/* ===== RESET E CONFIGURAÇÕES GLOBAIS ===== */
* {
    box-sizing: border-box
}

html,
body {
    height: 100%
}

body {
    margin: 0;
    font-family: var(--ff);
    background: #ffffff;
    color: var(--gray-900);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.5;
    overflow-x: hidden;
}

/* ===== CONTAINER PRINCIPAL ===== */
.container {
    width: min(1200px, 92%);
    margin: 0 auto;
}

/* ===== FAIXA SUPERIOR FIXA ===== */
.topstrip {
    background: linear-gradient(90deg, var(--accent), #0b2bff);
    color: var(--white);
    text-align: center;
    padding: 12px;
    font-size: 14px;
    font-weight: 500;
    z-index: 1001;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}

/* ===== CABEÇALHO PRINCIPAL ===== */
.header {
    padding: 0;
    position: fixed;
    top: 44px;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    transition: all 0.4s ease;
    border-bottom: 1px solid var(--gray-200);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

/* ===== CONTEÚDO INTERNO DO CABEÇALHO ===== */
.header__inner {
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
    height: 80px;
}

/* ===== LADO ESQUERDO DO CABEÇALHO ===== */
.header__left {
    display: flex;
    align-items: center
}

/* ===== LOGO DO CABEÇALHO ===== */
.header__logo {
    height: 70px;
    transition: all 0.3s ease;
}

/* ===== LISTA DE NAVEGAÇÃO ===== */
.nav__list {
    display: flex;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
    align-items: center;
    height: 100%;
}

/* ===== ITEM DA NAVEGAÇÃO ===== */
.nav__item {
    position: relative;
    display: block;
    height: 100%;
}

/* ===== LINK DA NAVEGAÇÃO ===== */
.nav__link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    height: 100%;
    transition: all 0.2s ease;
    position: relative;
    border-bottom: 3px solid transparent;
    white-space: nowrap;
}

/* ===== LINK DA NAVEGAÇÃO NO HOVER/FOCUS ===== */
.nav__link:hover,
.nav__link:focus {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

/* ===== SETA DO DROPDOWN ===== */
.nav__arrow {
    transition: transform 0.2s ease;
}

/* ===== ROTAÇÃO DA SETA NO HOVER ===== */
.has-mega:hover .nav__arrow,
.has-dropdown:hover .nav__arrow {
    transform: rotate(180deg);
}

/* ===== CALL TO ACTION DO CABEÇALHO ===== */
.header__cta {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 16px
}

/* ===== BOTÃO PRINCIPAL ===== */
.btn {
    font-family: var(--ff);
    cursor: pointer;
    border-radius: 8px;
    padding: 12px 24px;
    border: 0;
    display: inline-block;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
}

/* ===== BOTÃO PRIMÁRIO ===== */
.btn--primary {
    background-color: #061577;
    color: var(--white);
}

/* ===== BOTÃO PRIMÁRIO NO HOVER ===== */
.btn--primary:hover {
    background: #0b2bff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(11, 43, 255, 0.3);
}

.btn-saiba {
    display: block;
    padding: 14px 32px;
    background: #0019d4;
    margin: 0 auto;
    color: white;
    font-size: 22px;
    font-weight: 500;
    border-radius: 16px;
    text-decoration: none;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.25);
    transition: 0.2s;
    max-width: calc(100% - 40px);
    text-align: center;
}

.btn-saiba:hover {
    filter: brightness(1.1);
}

/* ===== HAMBÚRGUER - DESKTOP (HIDDEN) ===== */
.hamburger {
    display: none;
    background: transparent;
    border: 0;
    padding: 8px;
    cursor: pointer;
    position: relative;
    z-index: 1001;
    flex-direction: column;
    gap: 4px;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-left: auto;
}

/* ===== LINHAS DO HAMBÚRGUER ===== */
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hamburger animation */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== MEGA MENU ===== */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 1000px;
    max-height: 500px;
    background: var(--dropdown-bg);
    box-shadow: var(--shadow);
    border-radius: 0 0 12px 12px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    transform: translateY(-10px);
    border: 1px solid var(--gray-200);
    border-top: none;
    padding: 0;
    display: flex;
    overflow-y: auto;
}

/* ===== MEGA MENU NO HOVER ===== */
.nav__item.has-mega:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* ===== CONTEÚDO DO MEGA MENU ===== */
.mega-menu__content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* ===== GRADE DO MEGA MENU ===== */
.mega-menu__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    flex: 1;
}

/* ===== COLUNA DO MEGA MENU ===== */
.mega-menu__col {
    display: flex;
    flex-direction: column;
}

/* ===== SEÇÃO DO MEGA MENU ===== */
.mega-menu__section {
    flex: 1;
}

/* ===== TÍTULO DA SEÇÃO DO MEGA MENU ===== */
.mega-menu__section-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--gray-900);
    margin: 0 0 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--gray-200);
}

/* ===== LISTA DO MEGA MENU ===== */
.mega-menu__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* ===== LINK DO MEGA MENU ===== */
.mega-menu__link {
    color: var(--gray-800);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 6px 0;
    display: block;
    transition: all 0.2s ease;
    border-left: 2px solid transparent;
    padding-left: 12px;
}

/* ===== LINK DO MEGA MENU NO HOVER ===== */
.mega-menu__link:hover {
    color: var(--accent);
    border-left-color: var(--accent);
    padding-left: 16px;
}

/* ===== SUBLISTA DO MEGA MENU ===== */
.mega-menu__sublist {
    list-style: none;
    padding: 0;
    margin: 8px 0 12px 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

/* ===== LINK FILHO DO MEGA MENU ===== */
.mega-menu__link--child {
    font-weight: 400;
    color: var(--gray-600);
    font-size: 13px;
    padding-left: 20px;
}

/* ===== LINK FILHO DO MEGA MENU NO HOVER ===== */
.mega-menu__link--child:hover {
    color: var(--accent);
    padding-left: 24px;
}

/* ===== DROPDOWN SIMPLES ===== */
.dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    min-width: 220px;
    background: var(--dropdown-bg);
    box-shadow: var(--shadow);
    border-radius: 0 0 12px 12px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    border: 1px solid var(--gray-200);
    border-top: none;
}

/* ===== DROPDOWN NO HOVER ===== */
.nav__item.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* ===== LISTA DO DROPDOWN ===== */
.dropdown__list {
    list-style: none;
    padding: 16px 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

/* ===== LINK DO DROPDOWN ===== */
.dropdown__link {
    color: var(--gray-800);
    text-decoration: none;
    display: block;
    font-size: 14px;
    padding: 8px 20px;
    transition: all 0.2s ease;
    font-weight: 500;
}

/* ===== LINK DO DROPDOWN NO HOVER ===== */
.dropdown__link:hover {
    color: var(--accent);
    background: var(--gray-100);
    padding-left: 24px;
}

/* ===== SEÇÃO PRINCIPAL ===== */
.main-content {
    padding: 180px 0 80px;
    background: linear-gradient(135deg, #0200B2, var(--blue-900), #000000);
    color: var(--white);
}

.section-title {
    font-size: 48px;
    margin: 0 0 50px 0;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    text-align: center;
}

.section-content {
    max-width: 900px;
    margin: 0 auto;
}

.section-content p {
    margin-bottom: 30px;
    font-size: 18px;
    line-height: 1.7;
    text-align: justify;
}

/* ===== SEÇÃO DE SOLUÇÕES ===== */
.solutions {
    padding: 80px 0;
    background-color: var(--white);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.solution-card {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.solution-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--accent);
}

.solution-card p {
    color: var(--gray-600);
    line-height: 1.6;
}

/* ===== SEÇÃO DE Videos ===== */
.videos {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--blue-900) 100%);
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.videos-card {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
}

.videos-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.videos-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--accent);
}

.videos-card p {
    color: var(--gray-600);
    line-height: 1.6;
}

/* ===== SEÇÃO INSTITUCIONAL ===== */
.institutional {
    padding: 80px 0;
    background-color: var(--gray-100);
}

.institutional-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.institutional-column h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--accent);
}

.institutional-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.institutional-column li {
    margin-bottom: 10px;
    color: var(--gray-600);
}

/* ===== RODAPÉ ===== */
.footer {
    background-color: #000000;
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 0;
}

/* ===== CONTEÚDO INTERNO DO RODAPÉ ===== */
.footer__inner {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    flex-wrap: wrap;
    padding-bottom: 40px;
}

/* ===== MARCA NO RODAPÉ ===== */
.footer__brand img {
    height: 120px;
    margin-bottom: 20px;
}

/* ===== COLUNAS DO RODAPÉ ===== */
.footer__cols {
    display: flex;
    gap: 60px;
    margin-left: auto;
    flex-wrap: wrap;
}

/* ===== TÍTULO DAS COLUNAS DO RODAPÉ ===== */
.footer__col h4 {
    margin: 0 0 20px 0;
    font-size: 16px;
    color: var(--white);
    font-weight: 600;
}

/* ===== LISTA DAS COLUNAS DO RODAPÉ ===== */
.footer__col ul {
    list-style: none;
    padding: 0;
    margin: 0
}

/* ===== ITENS DA LISTA DO RODAPÉ ===== */
.footer__col li {
    margin-bottom: 12px;
}

/* ===== LINKS DO RODAPÉ ===== */
.footer__col li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 14px;
}

/* ===== LINKS DO RODAPÉ NO HOVER ===== */
.footer__col li a:hover {
    color: var(--white);
}

/* ===== PARTE INFERIOR DO RODAPÉ ===== */
.footer__bottom {
    background: rgba(0, 0, 0, 0.8);
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ===== DIREITOS AUTORAIS ===== */
.footer__copyright {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* ===== CARD PRINCIPAL ===== */
.contact-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
    max-width: 1000px;
    width: 100%;
    margin: 40px auto;
    font-family: "Inter", sans-serif;
}

.contact-card h3 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #222;
}

/* ===== FORMULÁRIO ===== */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* ===== GRUPO DE CAMPO ===== */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.95rem;
    color: #333;
    font-weight: 500;
}

.form-group input {
    padding: 12px 14px;
    border: 1.5px solid #dcdcdc;
    border-radius: 8px;
    font-size: 0.95rem;
    outline: none;
    transition: border 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.15);
}

/* ===== CHECKBOX E BOTÃO ===== */
.form-footer {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 10px;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
}

/* ===== BOTÃO ===== */
.btn-submit {
    padding: 12px 20px;
    background: #007bff;
    color: #fff;
    font-size: 1rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
}

.btn-submit:hover {
    background: #005fcc;
    transform: translateY(-2px);
}

.btn-submit:active {
    transform: translateY(0px);
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed !important;
    bottom: 20px !important;
    right: 20px !important;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    z-index: 2147483647 !important;
    text-decoration: none;
    cursor: pointer;
    transition: transform .16s ease;
    -webkit-tap-highlight-color: transparent;
}

.whatsapp-float:hover,
.whatsapp-float:focus {
    transform: scale(1.06);
    outline: none;
}

.whatsapp-icon {
    width: 34px;
    height: 34px;
    display: block;
}

/* ===== FAQ SECTION ===== */
.faq-section {
    width: 100%;
    padding: 80px 0;
    background: linear-gradient(135deg, #0019d4, #000428);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.faq-container {
    max-width: 900px;
    width: 100%;
    padding: 0 20px;
}

.faq-title {
    font-size: 40px;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}

.faq-subtitle {
    font-size: 16px;
    color: #eaeaea;
    margin-bottom: 40px;
}

/* FAQ BOX */
.faq-box details {
    background: #e8e8e8;
    margin: 8px 0;
    border-radius: 4px;
    overflow: hidden;
}

.faq-box summary {
    padding: 18px 20px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
}

.faq-box summary::-webkit-details-marker {
    display: none;
}

.faq-box summary:after {
    content: "⌄";
    font-size: 20px;
    transition: 0.3s;
}

details[open] summary:after {
    transform: rotate(180deg);
}

.faq-box p {
    padding: 15px 20px 25px;
    font-size: 16px;
    color: #333;
    background: #f8f8f8;
}

/* ===== RESPONSIVE STYLES ===== */

/* TABLET (max-width: 900px) */
@media (max-width: 900px) {
    /* Show hamburger button */
    .hamburger {
        display: flex !important;
    }

    /* Navigation menu for mobile */
    .nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        z-index: 999;
        padding: 100px 20px 40px;
        overflow-y: auto;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    .nav.nav--open {
        transform: translateX(0);
    }

    .nav__list {
        flex-direction: column;
        gap: 0;
        height: auto;
    }

    .nav__item {
        width: 100%;
        border-bottom: 1px solid rgba(7, 10, 63, 0.1);
        height: auto;
    }

    .nav__link {
        padding: 16px 20px;
        width: 100%;
        border-bottom: none;
        font-size: 18px;
        color: var(--accent) !important;
        height: auto;
        justify-content: space-between;
    }

    .nav__arrow {
        transition: transform 0.3s ease;
    }

    .nav__item.open .nav__arrow {
        transform: rotate(180deg);
    }

    /* Mega menu mobile */
    .mega-menu {
        position: static !important;
        width: 100% !important;
        max-height: 0 !important;
        overflow: hidden;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none !important;
        background: var(--gray-100);
        border: none;
        border-radius: 0;
        margin: 0;
        padding: 0 !important;
        transition: max-height 0.3s ease;
        display: block !important;
    }

    .mega-menu.menu-open {
        max-height: 500px !important;
        padding: 20px !important;
    }

    .mega-menu__grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }

    .mega-menu__section {
        margin-bottom: 20px;
    }

    .mega-menu__section-title {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .mega-menu__link {
        padding: 8px 0;
        font-size: 14px;
    }

    /* Dropdown mobile */
    .dropdown {
        position: static !important;
        width: 100% !important;
        min-width: auto !important;
        max-height: 0;
        overflow: hidden;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none !important;
        background: var(--gray-100);
        border: none;
        border-radius: 0;
        margin: 0;
        padding: 0 !important;
        transition: max-height 0.3s ease;
    }

    .dropdown.menu-open {
        max-height: 300px;
        padding: 15px 20px !important;
    }

    .dropdown__list {
        gap: 8px;
    }

    .dropdown__link {
        padding: 8px 15px;
        font-size: 14px;
    }

    /* Hide header CTA on mobile */
    .header__cta {
        display: none !important;
    }

    /* Adjust header for mobile */
    .header__inner {
        height: 70px;
        gap: 20px;
    }

    .header__logo {
        height: 50px;
    }

    /* Adjust main content */
    .main-content {
        padding: 140px 0 60px !important;
    }

    .section-title {
        font-size: 32px !important;
    }

    .section-content p {
        font-size: 16px;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .institutional-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .btn-saiba {
        font-size: 18px;
        padding: 12px 20px;
    }

    /* Adjust footer for mobile */
    .footer__inner {
        flex-direction: column;
        gap: 40px;
    }

    .footer__cols {
        flex-direction: column;
        gap: 30px;
        width: 100%;
        justify-content: center;
        margin-left: 0;
    }

    .footer__brand img {
        height: 80px;
        margin: 0 auto;
    }

    .faq-title {
        font-size: 32px;
    }
}

/* MOBILE (max-width: 480px) */
@media (max-width: 480px) {
    .header__inner {
        height: 60px;
    }

    .main-content {
        padding: 120px 0 40px !important;
    }

    .section-title {
        font-size: 28px !important;
    }

    .section-content p {
        font-size: 14px;
    }

    .btn-saiba {
        font-size: 16px;
        padding: 10px 16px;
    }

    .solution-card {
        padding: 20px 16px;
    }

    .solution-card h3 {
        font-size: 20px;
    }

    .solution-card p {
        font-size: 14px;
    }

    .contact-card {
        padding: 20px;
        margin: 20px auto;
    }

    .nav {
        padding: 80px 15px 30px;
    }

    .nav__link {
        padding: 14px 15px;
        font-size: 16px;
    }

    .whatsapp-float {
        width: 52px;
        height: 52px;
        bottom: 16px;
        right: 14px;
    }

    .whatsapp-icon {
        width: 28px;
        height: 28px;
    }

    .faq-title {
        font-size: 28px;
    }
}

/* Desktop-safe overrides */
@media (min-width: 901px) {
    .hamburger {
        display: none !important;
    }
    
    .nav {
        position: static !important;
        transform: none !important;
        height: auto !important;
        padding: 0 !important;
        background: transparent !important;
        backdrop-filter: none !important;
    }
}